home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Acorn User: China
/
Acorn User China CD-ROM (UK) (Disc B)
/
Acorn User China CD-ROM (UK) (Disc B).bin
/
STUTTGART
/
FROMUTS
/
UNIXLIB37B
/
test_c_stdtest
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1991-12-02
|
259 b
|
16 lines
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
static char *h = "Hello World Hello World Hello World";
int main()
{
int l = strlen(h);
setvbuf(stdout,0,_IOFBF,16);
fwrite(h,1,l,stdout); putchar('\n');
fputs(h,stdout); putchar('\n');
puts(h);
}